MODIS NRT Global Flood Product

Author

Juan F. Martinez, Iris Cano

Published

January 30, 2024

LANCE MODIS Near Real Time (NRT) Global Flood Product

MODIS NRT FLOOD1

Overview

In this lesson, you will use R to take a closer look at the data from the LANCE MODIS Near Real Time (NRT) Global Flood Product, including learning about what are LANCE and MODIS, and the NRT Flood products available. You will then learn to select, download, and visualize one of the NRT Flood layers…

Coding Review

This lesson uses the R language and environment. R is a popular language used for statistical computing and graphics.

Learning Objectives

After completing this lesson, you should be able to:

  • Determine what NRT raster data is available by navigating the LANCE website.

  • Read a tile map and select a raster tile to download based on a point of interest.

  • Download near-real-time raster data using the application programming interfaces (APIs) with the GET HTTP request method (Wilson 2024).

  • View the downloaded raster data to quickly preview.

  • Classify and place on a map the NRT flood raster data to determine areas with unusual flooding.

Introduction

Atmospheric circulation, water evaporation, and their interactions with land surfaces can impact a region’s rainfall variability. For example, California’s winter is correlated to ocean evaporation near the west coast and eastern North Pacific, and ocean evaporation is a strong factor in increased flooding in the region (Wei et al. 2016). Additionally, drought in the region is associated to high pressure systems off the U.S. west coast, with studies finding that the high pressure system is linked to the Pacific sea surface temperature anomalies, and exacerbated by high evaporation over land due to high temperatures.

It is critical to understand the water cycle and how flooding events develop, particularly as climate change intensifies extreme weather events, because the impacts of flooding can be a risk to human life, and can disrupt infrastructure, agriculture, and natural habitats.

2

The MODIS/Aqua+Terra Global Flood Product L3 Near Real Time (NRT) 250m Global Flood Product (MCDWD_L3_NRT) (beta) provides daily maps of flooding globally. The product is provided over 3 compositing periods (1-day, 2-day, and 3-day) to minimize the impact of clouds and more rigorously identify flood water (the best composite will depend on the cloudiness for a particular event) (Lin et al. 2019)

What are MODIS and LANCE?

MODIS

The Moderate Resolution Imaging Spectroradiometer (MODIS) is a NASA Earth Observing System (EOS) satellite-based sensor system that creates data products including land surface temperatures, land surface reflectance, radiances, clouds, aerosols, water vapor, active fire, snow cover, sea ice measurements, and other factor information. The MODIS Near Real-Time (NRT) data includes the Flood product which is a daily ~250 m resolution product showing flood and surface water detected from the twice-daily overpass of the MODIS optical sensors.

The satellite data is readily available shortly after it is acquired by the MODIS instrument on board the Terra and Aqua satellites. This space-based instrument distinguishes 36 spectral bands and groups of wavelengths which helps map the extent of snow and ice caused by winter storms and frigid temperatures. Initially, the water-detecting algorithm is applied to both MODIS observations (Terra and Aqua). Due to cloud and terrain shadows create false positives.

MODIS Components3

To minimize errors, the product is generated with three different compositing periods (1-day, 2-day, and 3-day) to compare results and decide which product has better coverage for the event. Further, they have to differentiate floods from expected surface water through the use of MODIS Land Water Mask (MOD44W), which uses a decision tree classifier trained with MODIS data to produce a global water mask (Carroll et al. 2016).

MODIS adoption aimed to surpass barriers related to satellite data, including cost, delivery timelines, limited formats, and the need for technical expertise. The transition to GFIMS establishes an operational system at FAO, ensuring continuity in meeting NASA data-user needs (Lin et al. 2019).

LANCE

The Land, Atmosphere Near Real-time Capability for EOS (LANCE) is a NASA initiative that provides near real-time access to satellite data, including MODIS. It allows users to access the latest data within a few hours of satellite overpass, enabling rapid responses to environmental events such as floods. LANCE is particularly valuable for emergency response teams and researchers who require up-to-date information for monitoring and assessing natural disasters (Land 2024).

LANCE reduces processing time, allowing for timely computation. Users access the data through platforms like Web Map Service (WMS) and Web Coverage Service (WCS), enabling visualization and analysis for informed decision-making. This NRT approach enhances the speed and accessibility of critical information on vegetation conditions (Zhang et al. 2022).

MODIS NRT Flood MCDWD Data Products

Data Information

The main landing pages for the MODIS NRT Global Flood Product:

NASA EARTHDATA

NASA CRM SEARCH

MODIS NRT Global Flood Product User Guide

The MODIS/Terra+Aqua Combined MODIS Water Detection (MCDWD) algorithm is tailor-made for detecting water bodies using MODIS data obtained from both the Terra and Aqua satellites. This algorithm employs various bands and spectral information to effectively identify and categorize water bodies. This enhances the accuracy and reliability of the flood product generated (Slayback 2023).

The MODIS Near Real-Time (NRT) Flood dataset offers multiple products, each accompanied by corresponding layers. The specific layers depend on the temporal aggregation:

MCDWD_F1_L3_NRT (1-Day product) This product type is the most basic level and provides binary information about water occurrence. Pixels are classified as either containing water or not, offering a simple way to identify flooded areas.

MCDWD_F1CS_L3_NRT (1-Day CS): F1CS has a cloud shadow mask applied on the version of the MCDWD_F1_L3_NRT product

MCDWD_F2_L3_NRT (2-Day): F2 provides additional information by categorizing water occurrences into three categories: no water, low-confidence water, and high-confidence water. This classification allows for a more nuanced understanding of the extent of the flood and its associated confidence levels.

MCDWD_F3_L3_NRT (3-Day): The F3 product, based on the MCDWD (MODIS/Terra+Aqua Combined MODIS Water Detection) is an algorithm that further refines flood mapping by adding additional spectral information. These results create a more accurate representation of water bodies and flooded areas (Slayback 2023).

Exploring the Data

For this exercise, we will be using the MCDWD L3 F3 product: LANCE NRT Flood

First, install and load the R packages required for this exercise:

packages_to_check <- c("stars", "httr", "jsonlite", "tmap", "basemaps")

# Check and install packages
for (package_name in packages_to_check) {
  if (!package_name %in% rownames(installed.packages())) {
    install.packages(package_name)
    cat(paste("Package", package_name, "installed.\n"))
  } else {
    cat(paste("Package", package_name, "is already installed.\n"))
  }
  library(package_name, character.only = TRUE)
}

#in case tmap does not install
#remotes::install_github('r-tmap/tmap')
Coding Review

This lesson uses the stars, httr, jsonlite, tmap, and basemaps packages. If you’d like to learn more about the functions used in this lesson you can use the help guides on their package websites.

Determine tiles of interest:

MODIS NRT Tile Map

A global map with labeled tiles

Based on availability, edit the tile_code variable:

#add tile code from the map above (written as h00v00)
tile_code <- 'h05v05'

This is the NRT Flood F3 (MCDWD_L3_F3) API URL:

# Primary Server
API_URL <- paste0('https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/details?products=MCDWD_L3_F3_NRT&archiveSets=61&temporalRanges=')

# if the primary server is down, the secondary server may be available:
#API_URL <- paste0('https://nrt4.modaps.eosdis.nasa.gov/api/v2/content/details?products=MCDWD_L3_F3_NRT&archiveSets=61&temporalRanges=')

We can combine the API URL above with the year_day provided and print the available datasets:

#pasting together URL and year_day
url <- paste0(API_URL, year_day)
print(url)
[1] "https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/details?products=MCDWD_L3_F3_NRT&archiveSets=61&temporalRanges=2024-067"

Loading the Data

NASA earthdata access requires a nasa username and token. How to generate User Token.

Access the NASA Earthdata with the GET function. Replace USER_TOKEN with the token you generated:

# Define headers (include your token)
headers <- c(
  Authorization = "Bearer USER_TOKEN"
)

# Make GET request
response <- httr::GET(url, httr::add_headers(.headers=headers))

Check the response status from the GET function:

response
Response [https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/details?products=MCDWD_L3_F3_NRT&archiveSets=61&temporalRanges=2024-067]
  Date: 2024-03-08 03:15
  Status: 200
  Content-Type: application/json;charset=UTF-8
  Size: 113 kB

Out of the response from the server, we’ll check if the response was a success with if (http_status(response)$category == "Success"). If this statement is true, then the content will be assigned to the variable data in JSON format, which is then parsed to a data frame using data_parsed <- jsonlite::fromJSON(data). The data frame contains data_parsed$content, a column with content. We filter the content by tile code using the command content_items <- data_parsed$content[grepl(tile_code, data_parsed$content$name, ignore.case = TRUE), ] and add the results to a data frame.

if (httr::http_status(response)$category == "Success") {
  # Read the JSON content into a data frame
  df <- httr::content(response, as = "parsed", simplifyVector = TRUE)
  df <- df$content
} else {
  print("Request failed with status code", httr::http_status(response)$status_code)
}
df
    archiveSets      cksum    collections               dataDay
1            61  911102925 modis-nrt-c6.1 2024-067 = 2024-03-07
2            61 4183830999 modis-nrt-c6.1 2024-067 = 2024-03-07
3            61 4176744384 modis-nrt-c6.1 2024-067 = 2024-03-07
4            61 1297672265 modis-nrt-c6.1 2024-067 = 2024-03-07
5            61 1753908263 modis-nrt-c6.1 2024-067 = 2024-03-07
6            61 3932759360 modis-nrt-c6.1 2024-067 = 2024-03-07
7            61  819401368 modis-nrt-c6.1 2024-067 = 2024-03-07
8            61 3625785449 modis-nrt-c6.1 2024-067 = 2024-03-07
9            61  407671058 modis-nrt-c6.1 2024-067 = 2024-03-07
10           61   20861896 modis-nrt-c6.1 2024-067 = 2024-03-07
11           61  601490806 modis-nrt-c6.1 2024-067 = 2024-03-07
12           61  288859234 modis-nrt-c6.1 2024-067 = 2024-03-07
13           61 2282666467 modis-nrt-c6.1 2024-067 = 2024-03-07
14           61 3376155605 modis-nrt-c6.1 2024-067 = 2024-03-07
15           61 3230536203 modis-nrt-c6.1 2024-067 = 2024-03-07
16           61 2672028257 modis-nrt-c6.1 2024-067 = 2024-03-07
17           61  805411042 modis-nrt-c6.1 2024-067 = 2024-03-07
18           61 1787060908 modis-nrt-c6.1 2024-067 = 2024-03-07
19           61 4006115335 modis-nrt-c6.1 2024-067 = 2024-03-07
20           61 2384781496 modis-nrt-c6.1 2024-067 = 2024-03-07
21           61 4163055108 modis-nrt-c6.1 2024-067 = 2024-03-07
22           61   63322422 modis-nrt-c6.1 2024-067 = 2024-03-07
23           61 1442246687 modis-nrt-c6.1 2024-067 = 2024-03-07
24           61 3946305025 modis-nrt-c6.1 2024-067 = 2024-03-07
25           61 1457590316 modis-nrt-c6.1 2024-067 = 2024-03-07
26           61   25464367 modis-nrt-c6.1 2024-067 = 2024-03-07
27           61 2932433143 modis-nrt-c6.1 2024-067 = 2024-03-07
28           61 1814825663 modis-nrt-c6.1 2024-067 = 2024-03-07
29           61 1032529483 modis-nrt-c6.1 2024-067 = 2024-03-07
30           61 2258505952 modis-nrt-c6.1 2024-067 = 2024-03-07
31           61  897780179 modis-nrt-c6.1 2024-067 = 2024-03-07
32           61 2215779916 modis-nrt-c6.1 2024-067 = 2024-03-07
33           61  915609056 modis-nrt-c6.1 2024-067 = 2024-03-07
34           61 1321866270 modis-nrt-c6.1 2024-067 = 2024-03-07
35           61 2423438125 modis-nrt-c6.1 2024-067 = 2024-03-07
36           61 1272319923 modis-nrt-c6.1 2024-067 = 2024-03-07
37           61 1692701502 modis-nrt-c6.1 2024-067 = 2024-03-07
38           61 3628974917 modis-nrt-c6.1 2024-067 = 2024-03-07
39           61 3313650152 modis-nrt-c6.1 2024-067 = 2024-03-07
40           61  609640785 modis-nrt-c6.1 2024-067 = 2024-03-07
41           61 3216653147 modis-nrt-c6.1 2024-067 = 2024-03-07
42           61  161871670 modis-nrt-c6.1 2024-067 = 2024-03-07
43           61 3150588785 modis-nrt-c6.1 2024-067 = 2024-03-07
44           61 1379241840 modis-nrt-c6.1 2024-067 = 2024-03-07
45           61  769194949 modis-nrt-c6.1 2024-067 = 2024-03-07
46           61 4056169898 modis-nrt-c6.1 2024-067 = 2024-03-07
47           61   99622509 modis-nrt-c6.1 2024-067 = 2024-03-07
48           61   12187227 modis-nrt-c6.1 2024-067 = 2024-03-07
49           61 3239305804 modis-nrt-c6.1 2024-067 = 2024-03-07
50           61 1374206525 modis-nrt-c6.1 2024-067 = 2024-03-07
51           61 1226338403 modis-nrt-c6.1 2024-067 = 2024-03-07
52           61 3633766312 modis-nrt-c6.1 2024-067 = 2024-03-07
53           61  171012989 modis-nrt-c6.1 2024-067 = 2024-03-07
54           61 4144196374 modis-nrt-c6.1 2024-067 = 2024-03-07
55           61  527623442 modis-nrt-c6.1 2024-067 = 2024-03-07
56           61 3711230324 modis-nrt-c6.1 2024-067 = 2024-03-07
57           61 3707135396 modis-nrt-c6.1 2024-067 = 2024-03-07
58           61 2453642012 modis-nrt-c6.1 2024-067 = 2024-03-07
59           61 2291140968 modis-nrt-c6.1 2024-067 = 2024-03-07
60           61 1829651988 modis-nrt-c6.1 2024-067 = 2024-03-07
61           61  509955188 modis-nrt-c6.1 2024-067 = 2024-03-07
62           61   50465168 modis-nrt-c6.1 2024-067 = 2024-03-07
63           61 3349779350 modis-nrt-c6.1 2024-067 = 2024-03-07
64           61 4174245642 modis-nrt-c6.1 2024-067 = 2024-03-07
65           61 2795107408 modis-nrt-c6.1 2024-067 = 2024-03-07
66           61 3768436886 modis-nrt-c6.1 2024-067 = 2024-03-07
67           61 2129400770 modis-nrt-c6.1 2024-067 = 2024-03-07
68           61 3247442754 modis-nrt-c6.1 2024-067 = 2024-03-07
69           61 1166502646 modis-nrt-c6.1 2024-067 = 2024-03-07
70           61 3414529246 modis-nrt-c6.1 2024-067 = 2024-03-07
71           61 3499252916 modis-nrt-c6.1 2024-067 = 2024-03-07
72           61   83758025 modis-nrt-c6.1 2024-067 = 2024-03-07
73           61 3281324912 modis-nrt-c6.1 2024-067 = 2024-03-07
74           61 1431429996 modis-nrt-c6.1 2024-067 = 2024-03-07
75           61 3883573592 modis-nrt-c6.1 2024-067 = 2024-03-07
76           61 2444037848 modis-nrt-c6.1 2024-067 = 2024-03-07
77           61  531602058 modis-nrt-c6.1 2024-067 = 2024-03-07
78           61 4018160863 modis-nrt-c6.1 2024-067 = 2024-03-07
79           61 1133407369 modis-nrt-c6.1 2024-067 = 2024-03-07
80           61  869224745 modis-nrt-c6.1 2024-067 = 2024-03-07
81           61  666463446 modis-nrt-c6.1 2024-067 = 2024-03-07
82           61  555799993 modis-nrt-c6.1 2024-067 = 2024-03-07
83           61 1543489410 modis-nrt-c6.1 2024-067 = 2024-03-07
84           61 3952265861 modis-nrt-c6.1 2024-067 = 2024-03-07
85           61 1590627147 modis-nrt-c6.1 2024-067 = 2024-03-07
86           61  111322505 modis-nrt-c6.1 2024-067 = 2024-03-07
87           61  736697218 modis-nrt-c6.1 2024-067 = 2024-03-07
88           61  256068857 modis-nrt-c6.1 2024-067 = 2024-03-07
89           61 2216571856 modis-nrt-c6.1 2024-067 = 2024-03-07
90           61 3346704328 modis-nrt-c6.1 2024-067 = 2024-03-07
91           61 3635598827 modis-nrt-c6.1 2024-067 = 2024-03-07
92           61 2674047790 modis-nrt-c6.1 2024-067 = 2024-03-07
93           61  592987022 modis-nrt-c6.1 2024-067 = 2024-03-07
94           61  748618151 modis-nrt-c6.1 2024-067 = 2024-03-07
95           61 4121787492 modis-nrt-c6.1 2024-067 = 2024-03-07
96           61 3920697180 modis-nrt-c6.1 2024-067 = 2024-03-07
97           61 1944412415 modis-nrt-c6.1 2024-067 = 2024-03-07
98           61 1433114778 modis-nrt-c6.1 2024-067 = 2024-03-07
99           61 2786510581 modis-nrt-c6.1 2024-067 = 2024-03-07
100          61  271643490 modis-nrt-c6.1 2024-067 = 2024-03-07
101          61  325202520 modis-nrt-c6.1 2024-067 = 2024-03-07
102          61 2509589463 modis-nrt-c6.1 2024-067 = 2024-03-07
103          61 4179331921 modis-nrt-c6.1 2024-067 = 2024-03-07
104          61 1809936426 modis-nrt-c6.1 2024-067 = 2024-03-07
105          61 1046461766 modis-nrt-c6.1 2024-067 = 2024-03-07
106          61 1255517816 modis-nrt-c6.1 2024-067 = 2024-03-07
107          61 2272246792 modis-nrt-c6.1 2024-067 = 2024-03-07
108          61 2918704715 modis-nrt-c6.1 2024-067 = 2024-03-07
109          61 2169543186 modis-nrt-c6.1 2024-067 = 2024-03-07
110          61 1412857437 modis-nrt-c6.1 2024-067 = 2024-03-07
111          61 3266652666 modis-nrt-c6.1 2024-067 = 2024-03-07
112          61  608393956 modis-nrt-c6.1 2024-067 = 2024-03-07
113          61 2634255848 modis-nrt-c6.1 2024-067 = 2024-03-07
114          61 4065957404 modis-nrt-c6.1 2024-067 = 2024-03-07
115          61 4185182534 modis-nrt-c6.1 2024-067 = 2024-03-07
116          61  624941647 modis-nrt-c6.1 2024-067 = 2024-03-07
117          61 2128860858 modis-nrt-c6.1 2024-067 = 2024-03-07
118          61 3533902485 modis-nrt-c6.1 2024-067 = 2024-03-07
119          61 4291995361 modis-nrt-c6.1 2024-067 = 2024-03-07
120          61 3011591925 modis-nrt-c6.1 2024-067 = 2024-03-07
121          61  828362697 modis-nrt-c6.1 2024-067 = 2024-03-07
122          61  973658628 modis-nrt-c6.1 2024-067 = 2024-03-07
123          61  516848519 modis-nrt-c6.1 2024-067 = 2024-03-07
124          61 3149068785 modis-nrt-c6.1 2024-067 = 2024-03-07
125          61 1624577251 modis-nrt-c6.1 2024-067 = 2024-03-07
126          61 2543984269 modis-nrt-c6.1 2024-067 = 2024-03-07
127          61 3404562070 modis-nrt-c6.1 2024-067 = 2024-03-07
128          61 2878419211 modis-nrt-c6.1 2024-067 = 2024-03-07
129          61 1698287818 modis-nrt-c6.1 2024-067 = 2024-03-07
130          61  990712289 modis-nrt-c6.1 2024-067 = 2024-03-07
131          61 2743381887 modis-nrt-c6.1 2024-067 = 2024-03-07
132          61 3206824771 modis-nrt-c6.1 2024-067 = 2024-03-07
133          61 3818010868 modis-nrt-c6.1 2024-067 = 2024-03-07
134          61 3869180759 modis-nrt-c6.1 2024-067 = 2024-03-07
135          61 4145500826 modis-nrt-c6.1 2024-067 = 2024-03-07
136          61 1708619081 modis-nrt-c6.1 2024-067 = 2024-03-07
137          61 1122746475 modis-nrt-c6.1 2024-067 = 2024-03-07
138          61 2707547723 modis-nrt-c6.1 2024-067 = 2024-03-07
139          61 3657202178 modis-nrt-c6.1 2024-067 = 2024-03-07
140          61 3742100399 modis-nrt-c6.1 2024-067 = 2024-03-07
141          61  558774015 modis-nrt-c6.1 2024-067 = 2024-03-07
142          61  721276956 modis-nrt-c6.1 2024-067 = 2024-03-07
143          61  782666371 modis-nrt-c6.1 2024-067 = 2024-03-07
144          61  448644003 modis-nrt-c6.1 2024-067 = 2024-03-07
145          61 3125805774 modis-nrt-c6.1 2024-067 = 2024-03-07
146          61  505116820 modis-nrt-c6.1 2024-067 = 2024-03-07
147          61  304958144 modis-nrt-c6.1 2024-067 = 2024-03-07
148          61  575857815 modis-nrt-c6.1 2024-067 = 2024-03-07
149          61 1009254639 modis-nrt-c6.1 2024-067 = 2024-03-07
150          61 3486815419 modis-nrt-c6.1 2024-067 = 2024-03-07
151          61 3458666581 modis-nrt-c6.1 2024-067 = 2024-03-07
152          61 1974285922 modis-nrt-c6.1 2024-067 = 2024-03-07
153          61 3472960468 modis-nrt-c6.1 2024-067 = 2024-03-07
154          61 2377221185 modis-nrt-c6.1 2024-067 = 2024-03-07
155          61 1499876575 modis-nrt-c6.1 2024-067 = 2024-03-07
156          61 2547388920 modis-nrt-c6.1 2024-067 = 2024-03-07
157          61  886130574 modis-nrt-c6.1 2024-067 = 2024-03-07
158          61 4169562372 modis-nrt-c6.1 2024-067 = 2024-03-07
159          61  614201336 modis-nrt-c6.1 2024-067 = 2024-03-07
160          61  709063548 modis-nrt-c6.1 2024-067 = 2024-03-07
161          61 2327714217 modis-nrt-c6.1 2024-067 = 2024-03-07
162          61  663255262 modis-nrt-c6.1 2024-067 = 2024-03-07
163          61  262309265 modis-nrt-c6.1 2024-067 = 2024-03-07
164          61  458879417 modis-nrt-c6.1 2024-067 = 2024-03-07
165          61  751424680 modis-nrt-c6.1 2024-067 = 2024-03-07
166          61 2594457266 modis-nrt-c6.1 2024-067 = 2024-03-07
167          61 2447605694 modis-nrt-c6.1 2024-067 = 2024-03-07
168          61 2945462833 modis-nrt-c6.1 2024-067 = 2024-03-07
169          61  111311965 modis-nrt-c6.1 2024-067 = 2024-03-07
170          61 3478141266 modis-nrt-c6.1 2024-067 = 2024-03-07
171          61  115616276 modis-nrt-c6.1 2024-067 = 2024-03-07
172          61 2953545090 modis-nrt-c6.1 2024-067 = 2024-03-07
173          61  361942030 modis-nrt-c6.1 2024-067 = 2024-03-07
174          61 1047916622 modis-nrt-c6.1 2024-067 = 2024-03-07
175          61 2962341121 modis-nrt-c6.1 2024-067 = 2024-03-07
176          61 1142093054 modis-nrt-c6.1 2024-067 = 2024-03-07
177          61  754409895 modis-nrt-c6.1 2024-067 = 2024-03-07
178          61 2991083947 modis-nrt-c6.1 2024-067 = 2024-03-07
179          61 1006110089 modis-nrt-c6.1 2024-067 = 2024-03-07
180          61 2765901630 modis-nrt-c6.1 2024-067 = 2024-03-07
181          61 3386184360 modis-nrt-c6.1 2024-067 = 2024-03-07
182          61 2823219449 modis-nrt-c6.1 2024-067 = 2024-03-07
183          61 3384192099 modis-nrt-c6.1 2024-067 = 2024-03-07
184          61 2353884981 modis-nrt-c6.1 2024-067 = 2024-03-07
185          61 4240689386 modis-nrt-c6.1 2024-067 = 2024-03-07
186          61 2949667013 modis-nrt-c6.1 2024-067 = 2024-03-07
187          61 1315391317 modis-nrt-c6.1 2024-067 = 2024-03-07
188          61  971045979 modis-nrt-c6.1 2024-067 = 2024-03-07
189          61 4178241495 modis-nrt-c6.1 2024-067 = 2024-03-07
190          61  501247299 modis-nrt-c6.1 2024-067 = 2024-03-07
191          61 2119232607 modis-nrt-c6.1 2024-067 = 2024-03-07
192          61 2547095279 modis-nrt-c6.1 2024-067 = 2024-03-07
193          61  607285370 modis-nrt-c6.1 2024-067 = 2024-03-07
194          61 3112875710 modis-nrt-c6.1 2024-067 = 2024-03-07
195          61 3334267769 modis-nrt-c6.1 2024-067 = 2024-03-07
196          61 3637912597 modis-nrt-c6.1 2024-067 = 2024-03-07
197          61 4148878259 modis-nrt-c6.1 2024-067 = 2024-03-07
198          61 2527156434 modis-nrt-c6.1 2024-067 = 2024-03-07
199          61  365761083 modis-nrt-c6.1 2024-067 = 2024-03-07
200          61 3131787596 modis-nrt-c6.1 2024-067 = 2024-03-07
201          61 3612317385 modis-nrt-c6.1 2024-067 = 2024-03-07
202          61 1478376525 modis-nrt-c6.1 2024-067 = 2024-03-07
203          61  478944668 modis-nrt-c6.1 2024-067 = 2024-03-07
204          61 1141757361 modis-nrt-c6.1 2024-067 = 2024-03-07
205          61 1344330535 modis-nrt-c6.1 2024-067 = 2024-03-07
206          61  392948103 modis-nrt-c6.1 2024-067 = 2024-03-07
207          61 1049738651 modis-nrt-c6.1 2024-067 = 2024-03-07
208          61 4200200191 modis-nrt-c6.1 2024-067 = 2024-03-07
209          61 1257213428 modis-nrt-c6.1 2024-067 = 2024-03-07
210          61  193473035 modis-nrt-c6.1 2024-067 = 2024-03-07
211          61 4285861721 modis-nrt-c6.1 2024-067 = 2024-03-07
212          61 3549622105 modis-nrt-c6.1 2024-067 = 2024-03-07
213          61 2971319130 modis-nrt-c6.1 2024-067 = 2024-03-07
214          61 2848495691 modis-nrt-c6.1 2024-067 = 2024-03-07
215          61 2898112731 modis-nrt-c6.1 2024-067 = 2024-03-07
216          61  138917032 modis-nrt-c6.1 2024-067 = 2024-03-07
217          61 3416969796 modis-nrt-c6.1 2024-067 = 2024-03-07
218          61  901979245 modis-nrt-c6.1 2024-067 = 2024-03-07
219          61 1783228255 modis-nrt-c6.1 2024-067 = 2024-03-07
220          61 1933657732 modis-nrt-c6.1 2024-067 = 2024-03-07
221          61 1029176164 modis-nrt-c6.1 2024-067 = 2024-03-07
222          61 4294145227 modis-nrt-c6.1 2024-067 = 2024-03-07
223          61 1322881760 modis-nrt-c6.1 2024-067 = 2024-03-07
                                                                                          downloadsLink
1   https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h33v03.061.tif
2   https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h10v09.061.tif
3   https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h29v04.061.tif
4   https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h17v06.061.tif
5   https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h19v09.061.tif
6   https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h28v08.061.tif
7   https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h07v02.061.tif
8   https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h27v08.061.tif
9   https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h32v04.061.tif
10  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h21v05.061.tif
11  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h26v04.061.tif
12  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h07v04.061.tif
13  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h06v03.061.tif
14  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h23v03.061.tif
15  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h18v08.061.tif
16  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h29v07.061.tif
17  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h25v05.061.tif
18  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h08v02.061.tif
19  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h31v03.061.tif
20  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h08v04.061.tif
21  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h12v11.061.tif
22  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h20v03.061.tif
23  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h11v12.061.tif
24  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h13v10.061.tif
25  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h11v03.061.tif
26  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h22v02.061.tif
27  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h27v07.061.tif
28  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h20v05.061.tif
29  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h22v08.061.tif
30  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h00v02.061.tif
31  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h19v03.061.tif
32  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h29v05.061.tif
33  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h27v06.061.tif
34  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h12v03.061.tif
35  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h16v06.061.tif
36  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h12v10.061.tif
37  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h02v03.061.tif
38  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h29v12.061.tif
39  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h29v09.061.tif
40  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h28v07.061.tif
41  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h10v03.061.tif
42  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h08v06.061.tif
43  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h27v02.061.tif
44  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h09v08.061.tif
45  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h02v02.061.tif
46  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h20v11.061.tif
47  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h31v11.061.tif
48  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h11v09.061.tif
49  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h31v12.061.tif
50  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h30v06.061.tif
51  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h31v04.061.tif
52  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h26v03.061.tif
53  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h08v05.061.tif
54  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h10v11.061.tif
55  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h12v09.061.tif
56  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h20v04.061.tif
57  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h11v10.061.tif
58  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h29v11.061.tif
59  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h30v09.061.tif
60  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h27v03.061.tif
61  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h02v06.061.tif
62  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h32v03.061.tif
63  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h25v07.061.tif
64  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h22v07.061.tif
65  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h19v05.061.tif
66  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h16v07.061.tif
67  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h17v07.061.tif
68  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h31v02.061.tif
69  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h12v12.061.tif
70  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h30v12.061.tif
71  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h33v12.061.tif
72  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h26v06.061.tif
73  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h11v07.061.tif
74  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h07v03.061.tif
75  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h33v11.061.tif
76  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h06v04.061.tif
77  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h21v10.061.tif
78  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h22v10.061.tif
79  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h11v04.061.tif
80  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h30v04.061.tif
81  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h22v04.061.tif
82  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h04v03.061.tif
83  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h23v07.061.tif
84  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h27v05.061.tif
85  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h32v09.061.tif
86  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h19v07.061.tif
87  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h06v02.061.tif
88  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h23v02.061.tif
89  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h26v07.061.tif
90  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h22v03.061.tif
91  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h19v06.061.tif
92  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h18v05.061.tif
93  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h05v03.061.tif
94  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h19v12.061.tif
95  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h03v02.061.tif
96  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h12v08.061.tif
97  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h32v13.061.tif
98  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h08v03.061.tif
99  https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h20v09.061.tif
100 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h21v07.061.tif
101 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h25v06.061.tif
102 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h09v05.061.tif
103 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h19v08.061.tif
104 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h29v08.061.tif
105 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h17v04.061.tif
106 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h13v09.061.tif
107 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h18v02.061.tif
108 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h11v02.061.tif
109 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h15v02.061.tif
110 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h34v02.061.tif
111 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h07v06.061.tif
112 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h17v03.061.tif
113 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h24v02.061.tif
114 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h10v12.061.tif
115 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h13v11.061.tif
116 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h05v02.061.tif
117 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h31v09.061.tif
118 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h10v05.061.tif
119 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h10v04.061.tif
120 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h20v06.061.tif
121 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h25v02.061.tif
122 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h22v06.061.tif
123 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h28v09.061.tif
124 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h11v13.061.tif
125 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h33v02.061.tif
126 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h12v04.061.tif
127 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h07v05.061.tif
128 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h21v08.061.tif
129 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h09v02.061.tif
130 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h02v07.061.tif
131 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h28v03.061.tif
132 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h20v02.061.tif
133 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h34v03.061.tif
134 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h09v09.061.tif
135 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h10v08.061.tif
136 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h09v04.061.tif
137 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h19v11.061.tif
138 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h09v06.061.tif
139 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h11v14.061.tif
140 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h26v08.061.tif
141 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h18v07.061.tif
142 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h09v03.061.tif
143 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h30v05.061.tif
144 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h26v02.061.tif
145 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h18v06.061.tif
146 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h08v07.061.tif
147 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h05v04.061.tif
148 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h35v12.061.tif
149 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h21v04.061.tif
150 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h05v05.061.tif
151 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h24v04.061.tif
152 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h30v10.061.tif
153 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h24v06.061.tif
154 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h29v03.061.tif
155 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h31v10.061.tif
156 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h28v06.061.tif
157 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h23v05.061.tif
158 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h18v03.061.tif
159 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h10v14.061.tif
160 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h30v07.061.tif
161 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h20v10.061.tif
162 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h27v04.061.tif
163 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h06v06.061.tif
164 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h32v11.061.tif
165 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h19v10.061.tif
166 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h21v03.061.tif
167 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h10v10.061.tif
168 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h22v11.061.tif
169 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h21v06.061.tif
170 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h09v07.061.tif
171 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h26v05.061.tif
172 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h21v11.061.tif
173 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h14v09.061.tif
174 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h28v02.061.tif
175 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h34v13.061.tif
176 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h19v04.061.tif
177 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h30v11.061.tif
178 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h28v05.061.tif
179 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h29v02.061.tif
180 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h21v09.061.tif
181 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h18v04.061.tif
182 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h30v02.061.tif
183 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h16v08.061.tif
184 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h11v08.061.tif
185 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h17v05.061.tif
186 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h01v02.061.tif
187 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h10v06.061.tif
188 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h06v05.061.tif
189 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h23v04.061.tif
190 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h10v02.061.tif
191 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h28v04.061.tif
192 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h22v09.061.tif
193 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h32v05.061.tif
194 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h35v02.061.tif
195 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h07v07.061.tif
196 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h01v03.061.tif
197 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h20v07.061.tif
198 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h30v08.061.tif
199 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h25v08.061.tif
200 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h11v11.061.tif
201 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h21v02.061.tif
202 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h31v05.061.tif
203 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h20v08.061.tif
204 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h30v03.061.tif
205 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h04v02.061.tif
206 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h35v13.061.tif
207 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h16v02.061.tif
208 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h32v10.061.tif
209 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h25v04.061.tif
210 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h17v08.061.tif
211 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h32v12.061.tif
212 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h22v05.061.tif
213 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h24v03.061.tif
214 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h25v03.061.tif
215 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h19v02.061.tif
216 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h10v13.061.tif
217 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h14v10.061.tif
218 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h29v06.061.tif
219 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h23v06.061.tif
220 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h24v05.061.tif
221 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h20v12.061.tif
222 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h32v02.061.tif
223 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h10v07.061.tif
        fileId                           md5sum      mtime
1   2162289510 19ccc82d359031cb506c619cafd84900 1709862426
2   2162289095 cd848d795d00bcd951d5e1f9c306c55c 1709862406
3   2162281853 6dc84cabfb863d87ca0cafeee6361e9e 1709862150
4   2162286110 b46c6c8dd36161813ab325ac6d70276a 1709862284
5   2162285848 5bf0a7bd94e77f40225209a745df31fb 1709862273
6   2162283863 ac80b8b05a4bdcb59dfe58e91096adde 1709862194
7   2162289520 270ed7579cf57449939d4c97a95c0ac0 1709862427
8   2162281325 6892f09aa29b206219cc7fdcd6a31eaf 1709862130
9   2162289945 04d9c2fab9b24a85c591806ab5938dad 1709862445
10  2162284404 6cdf928c2d8d50c38307122383843666 1709862217
11  2162281600 ef460fbd686407c5355c8aec8779bbd5 1709862140
12  2162289452 47737c15d79453a54fcf0cdf261c40a0 1709862422
13  2162289364 7410db3c5237dc9f5666661b24847c71 1709862417
14  2162286437 c705960687a37a9993cd5f117a4eae07 1709862289
15  2162287087 854d50072cdff4f52f55c1124198b031 1709862323
16  2162284414 fb800a5fc0ccc8e8463044ae67b05600 1709862217
17  2162284507 db6780b7d45ee3432f69a396f27bd692 1709862221
18  2162288167 9ff5740d97b9987f61e03df96cec884b 1709862361
19  2162281610 c80fc1d75d034c5eddf60050f1c6ec55 1709862141
20  2162289221 056c827464a3f07c0010d1d4a3b88782 1709862414
21  2162287381 e9d47322370368d8e9da2597d033c0f2 1709862336
22  2162286778 e7ea07c39157a51a212da376d300d016 1709862305
23  2162288197 7bba55871c6987f6d14d9b517a47b85d 1709862362
24  2162286788 48ba3355d26b1b51a1fa09257201ff70 1709862306
25  2162287371 21862b9eeeb9c51cbcccb9458d1a5154 1709862336
26  2162286463 93161d5be478eb910ab25e4e19a5d837 1709862289
27  2162282640 0d4a8bf96962d9fa2d8d559843f59e6e 1709862187
28  2162287841 4d249c3ce9bb1cb44ea053bfc6b1da2d 1709862341
29  2162284732 a7d66914b2d2dfe86321efc030e77782 1709862234
30  2162289231 536a8adf4e8b1f392bcae47ec20cb580 1709862414
31  2162286100 d8ca11a5c9404754e8640b6863043b12 1709862284
32  2162281195 aadca0059cfb7f6ec6e6be26a8eaaefd 1709862129
33  2162284291 8ec7f1eb2d2b7337203b006f759ee6bc 1709862214
34  2162289867 c99fba363d734d2e868a72c6dfb73540 1709862442
35  2162286996 884835846e76e458fbd355fc7865d639 1709862315
36  2162287869 a1e7c803a66df7d240e3e8cb1b1cfa3a 1709862342
37  2162289500 a6d7b1dc6082146a1c86837cb788759d 1709862426
38  2162282695 9d45861d50487d48a09a7f180a0bdb64 1709862188
39  2162284005 1498464bcdd7795b9307d9334cf8c60f 1709862201
40  2162284028 45345fc4ef50bf4472e89d55c64ee8d1 1709862202
41  2162288177 da6e9174cb216da4a37e2403c1555f14 1709862361
42  2162289374 4115830619316b120688d49d3166298f 1709862417
43  2162285838 1e861f2c9f5167f739d6317281fd5d62 1709862272
44  2162287391 f38119159d521cfee381999821de2991 1709862337
45  2162289700 3604d17b311771cb6999eba78e5f50a9 1709862436
46  2162286798 b11cc8f8739e5cf3b55a7ed8de14d22d 1709862307
47  2162281834 507b45cf667f166c94ba6184c26516d8 1709862150
48  2162288187 9426bbf0f95008b3663707c581bb0fde 1709862361
49  2162281814 a14c663b54453f7149c6a299f6f1c681 1709862150
50  2162282016 98280672be6d0f1722e34517219d4e13 1709862152
51  2162284752 8c4fafeabc9cb3f0a4e39d2d403e4539 1709862235
52  2162283891 8fe2c6da577009db43448a9d1dddd0b6 1709862195
53  2162289251 32649a8b746249b45cb8d4ab9b3869bb 1709862414
54  2162287097 70d5aa1d99004d44ba3645e4d3ae2253 1709862323
55  2162287178 69c162bb2f7837d5bd2d09ea0a847be0 1709862326
56  2162286768 1dc0a58ace9a9da48b7209ad92edb295 1709862305
57  2162289877 956879fbc448842c858ae92e3f18980a 1709862442
58  2162282685 e60d16fb62e3d9abef323dfd66ad2802 1709862187
59  2162281824 ca71f9e4b0835dceffe764e3bf31f597 1709862150
60  2162285507 422cb50a95a32bf2e9c386bcea5466bb 1709862256
61  2162288703 f7795f090ff6adbacd8d31813907f323 1709862390
62  2162289887 a454603ea83187631af8bc924f7d789b 1709862442
63  2162285828 47805655276dedf91a045c028ae8c83f 1709862272
64  2162285196 b5347fab773cf4b2daebb99993aac361 1709862244
65  2162287889 f83b4754846bb50164420d8622d64682 1709862342
66  2162286641 88806995e3368cefc3d686fab8c76c56 1709862297
67  2162286373 be9cc2c1b307abf392324ec594e1e1ea 1709862289
68  2162281185 7d081284966f68e2bb2aa1c3d6aa76ca 1709862129
69  2162287879 ab12debc207124c25e295b4ad7323033 1709862342
70  2162283694 0d38856ba835f6b2e7c07116ffc7e5cc 1709862190
71  2162288957 e5dadb98fb1091d9e22bce94baf030ae 1709862398
72  2162284301 48565d253663f425b762d89df941b131 1709862214
73  2162287216 adb371f7f2b0edacb1849135f1d72f25 1709862326
74  2162289085 bca2d65429effd6daf3c1673ac087a98 1709862406
75  2162288736 b7a8514a59ae272e1bcb81665ffe4854 1709862391
76  2162288716 f48c0a91838fd105bff927156287f5b9 1709862391
77  2162286700 b7ad5b1e344864e1cdda87b48468f42f 1709862298
78  2162283995 2f1494b438b147c0b4c4d9091f04d8a6 1709862200
79  2162288726 c52a5e2e1dce95a76178a9465fb8e63d 1709862391
80  2162280936 086671436e879d7866a90bf950787fd6 1709862126
81  2162284742 6760abb9883ee25ca610b85e354f1498 1709862234
82  2162289241 60a90407c6179d86be79b8292e34aba8 1709862414
83  2162285398 2308d19f45b553db827e3e700b95af4d 1709862252
84  2162281804 77b888523df81e0a25a8991dda9ada73 1709862149
85  2162281169 3c186658a24e7f616d84e00a007c3cad 1709862128
86  2162285497 4ad92c0a5d394778d9a3b886a50c1a49 1709862255
87  2162288866 89e9148b2b7e267459f650a543efdd32 1709862395
88  2162286529 5e78b423ed41744b538a57733d95a4a3 1709862292
89  2162282129 d9bac968c7de541315ee30e267fb33e6 1709862187
90  2162285325 f23ea04545bb39c7a156d14c75026b51 1709862248
91  2162285448 d01b27277a0b20c7be7e5218b4c22437 1709862254
92  2162286758 ca857841b0066c25a0ae558359a78a99 1709862304
93  2162290092 185957efbb0b684f8159023c1e2eb13d 1709862453
94  2162287127 52f1bbf5a84dc2a92e65b201242c3a85 1709862324
95  2162289472 aa401c6067c10dfd07b97731d4649bee 1709862425
96  2162287274 59d8fe09216eebda6758b986bf0f0acc 1709862329
97  2162288625 e4867733945200b2ef01fa9846de6ab9 1709862386
98  2162288507 8d1b78ff8e7b5048f098edba1296fd2f 1709862383
99  2162285706 f0588f12b3c821b0311d855174e097aa 1709862266
100 2162285206 fedd8be9ca7731d93264f4b2effb0bba 1709862244
101 2162285374 b68af4b2e3825b2659c4f4c9533283b2 1709862250
102 2162289838 a3097ad3ced673b10d3e95627b95efc3 1709862442
103 2162285335 75b06a980b8a3e6a07c61cea578a5b27 1709862248
104 2162282139 f6c4d9fb41b6cd55c6e21e224e9ccfa6 1709862187
105 2162288005 ed7a94032fd00fc1291e0ae272f172a8 1709862348
106 2162287975 ab5fecee776aef703c4c994c7d7c971e 1709862344
107 2162287117 c505050fde13e93bef8ae9511638bd43 1709862324
108 2162288761 bfcf1f5fd7c745d9d7852f33ef811246 1709862394
109 2162287137 2ed415bea316127d0defed6f2caa6baa 1709862324
110 2162289906 d54b9abc525c12d95822910290474832 1709862444
111 2162289334 50c995ce3e37e85a8f6fb3a37a2f8d1b 1709862416
112 2162286539 2a67c051a6ce6c4ec61756a736b2acd7 1709862292
113 2162286519 7f7b91768498cf709a17a2a979002da1 1709862292
114 2162287985 07738e93c93f94efd8faea6850157580 1709862346
115 2162287059 541e5bd4e5ef114f18c8d8a9bd38118e 1709862319
116 2162289193 7dd3736887e0afa737a600f98a76230d 1709862412
117 2162280600 14eb8120f180778f93180698d4230a2f 1709862090
118 2162288615 502a06d08512a7787bc33e1f080e92ef 1709862386
119 2162288635 e2ee9ae37f18b3bcda0cc34d9728b6d4 1709862386
120 2162285961 eee11a6b0e9574f17de9852e56a75dbd 1709862277
121 2162284836 6700319919ad997a3a6b26cbe3a50d46 1709862239
122 2162283744 3916312e8b0add36d4bce4b23ccf1ed5 1709862191
123 2162281794 436e92a31354750326bb847fb6e345ed 1709862149
124 2162288323 da11a7aaa7ae404ec411b9dfbe069957 1709862374
125 2162289680 05c4df4f5c21b8cd11aaf95620e898bd 1709862436
126 2162287107 13eb0dc5b2eb103e199f924a83620f86 1709862323
127 2162289273 c840444a523785ba38d6845b2921ce0f 1709862415
128 2162284814 8928c9bf26c86baeeac124d2825df5e5 1709862237
129 2162288967 01bc70fec3df32d48245666839d66a9c 1709862399
130 2162288015 cc12f4fe7a498af2d6e1d112a55b3531 1709862348
131 2162281764 f5d848914b76fc0f7677af8577fcccd4 1709862148
132 2162286485 7673b5943ad1529a5e2d38d376f4d607 1709862291
133 2162289916 e02a255f94be2db4b0694c67d5bc36a7 1709862445
134 2162288333 d0423d667e8001d0aae96c92dbe4b627 1709862374
135 2162288670 a80ac99af6502705f3c03c186173d8b0 1709862388
136 2162288313 7e229ea99686a59f427b9db5edbe8519 1709862374
137 2162285669 8b8c209f54c0b0577a292a0acda88550 1709862264
138 2162288517 70b45672bac2f0de8d308ef1b4068b75 1709862384
139 2162288084 6e9001fa32b4315cf2ff9f0c357c385d 1709862353
140 2162281440 347ea398272c80e22ce41ef1ebd2d486 1709862131
141 2162287333 ba3737bea4df333d8ed2ed394f60eafd 1709862334
142 2162288074 7a7ec79b2e1129b477780d557353d3ef 1709862350
143 2162281271 9212d9d92e66ee17f1fa1082d43f0e06 1709862130
144 2162282705 075fb4730015071a0938c7ea2d7d527a 1709862189
145 2162286748 7271cc58ccd81cb2aa5b2f7a6cf64b26 1709862302
146 2162288680 9702bae450aafa2d1e7c6a86b47ee2d3 1709862388
147 2162289171 13345523f5a4e6d5f270b6b65dc410e3 1709862410
148 2162289035 fe91a3ae3e35f421af58fa1219a63630 1709862403
149 2162285630 4d664d4b7043db3a8fb523e089987aeb 1709862262
150 2162289926 701fabe1354a4dcaf99248a89b49c74f 1709862445
151 2162285034 4eab2d2ba0448a4f63d3f877b7d671a7 1709862240
152 2162284713 ce842a01cb99531c332c136d5a2849fa 1709862232
153 2162285650 4384b9721d9da8468dc759b1d43ff2d8 1709862263
154 2162283724 8daf14c87a5c38beedb25d5f29cde216 1709862191
155 2162284483 a3360ca58e7a38fe4a798934706a6969 1709862219
156 2162283853 f02f7cf9c1f55bef2cfe5fae1faee9ca 1709862194
157 2162284473 f1c5297f6f20cc3a224c566fd32745cd 1709862219
158 2162286495 d2c659f8150942019b0607623050aed0 1709862292
159 2162288353 62764d1b7be5501fe6a8ebf9ea19fca3 1709862376
160 2162281784 d04a3b2a8bf232052601add100005bee 1709862148
161 2162286859 a71a8c050f38fe7f1b800c196b181501 1709862311
162 2162281774 17e80e4d28c07bb21d4ed8a02d483d7d 1709862148
163 2162289690 d44b7404116484e457edd981a99b6211 1709862436
164 2162281647 9a07748cef9869643cb3482c56236233 1709862142
165 2162285438 f730fef14fae5cd733017e8ef1a95f1d 1709862254
166 2162285418 ca990ad53a262c81461cd908149b8e6e 1709862252
167 2162287401 e94b9a5c7e99ff7b147bb5b686c02ee4 1709862337
168 2162284165 522db09ec9fabb5d58d1ec041400d1a9 1709862210
169 2162284865 163d42749d84d9f097667b198c367180 1709862239
170 2162287293 5fe1ff007ed85f50b433d714f9cd1038 1709862330
171 2162284131 f8a3354e79869e2c46ca084c17dc5094 1709862209
172 2162285800 ce496e8671b5a2fba793c987fcb9781a 1709862272
173 2162288064 38adcaad3729cfd64eb1abe129056761 1709862349
174 2162281261 04a8f398edf6b66ad6a71dd1a6663e02 1709862129
175 2162288645 eb7163b0a7a6a201b594be2ea2e5fa82 1709862387
176 2162286090 620e131cf9963828bae58a4f28b6370e 1709862284
177 2162284846 2a644268f53022498ac37c9b5dff308c 1709862239
178 2162283734 7e51e49ad8e4fa5808923bd4e91ef7e9 1709862191
179 2162283714 74eb0279c6b8ad6af4292ccdcfd55ce7 1709862191
180 2162285428 523b4f351f3ea5729937d8a9dc8c1777 1709862253
181 2162285345 59d11869ac72f4b25e4abaa231e2b16b 1709862248
182 2162282149 65a5b5e2ecbc0e59a46ac3111863b157 1709862187
183 2162287147 69bcd2407a5042496a2000112b799134 1709862325
184 2162288693 effaaf2e23c5e046364cbd5970685ea0 1709862390
185 2162288245 50ca8de4c5048ea466e3c137c3b2d265 1709862367
186 2162289344 f33fdf8cc51bc7cfb307cdf496a672ed 1709862417
187 2162289115 7df9f0ad7fdfc8fafddda3421271089d 1709862406
188 2162289161 8fa06715ffb3fd7623b42031371855ac 1709862410
189 2162286690 85066f13d81fb43dd61dd975af882ba0 1709862298
190 2162288294 96db0a7cee22d65d3f1ca53b131ee7c5 1709862370
191 2162283970 8a104c782aa7de530fe2abc540cedc02 1709862199
192 2162285575 67c45a1aad1889f59a66cede96661f76 1709862260
193 2162289105 245dee711e78faadef351274a3a6157d 1709862406
194 2162289574 2ad2b3ba10e1e73fecffa53c7ea2dbad 1709862430
195 2162288421 958f29db157e44d7470e68eb2dc2adb3 1709862380
196 2162288876 3497634b51db123b71dfb907cdb9c98e 1709862397
197 2162285585 5a8bb42364ee52df469c0b9c35a8c083 1709862262
198 2162283821 cbb5fd424d5fd7e878513c93fabf6af9 1709862193
199 2162282771 cdf66eaff6bbe0022425a915c51e35ab 1709862189
200 2162288255 bad956d203ff06b8f9942269934a4920 1709862368
201 2162285364 73e671d090df170f6116501369b0b210 1709862250
202 2162282159 1d0d86b7a253cf0478869cf842b3b540 1709862187
203 2162286719 e939af94dc519c01b32a07897f512f2f 1709862299
204 2162283704 e6f2e7a53c06d0a6a963e1d887860743 1709862191
205 2162289462 3d9e4cd34ee80b2d6ff54d66c19c7ffe 1709862425
206 2162289354 4f7f5541ba69172d1a8a1e969d5aa1b1 1709862417
207 2162287264 2c9d6f74332fa9facd69bd1814ffcf97 1709862328
208 2162282781 7c3e64f828030c28f7cc184019c19970 1709862190
209 2162284624 9646f907059b86c5a4ab1b7c184550fd 1709862230
210 2162288411 f72a7c9423d8f363ef11dd7465f307aa 1709862380
211 2162288454 4d21ae57fc967d1539e812dd7aff8728 1709862382
212 2162283811 50e89ac840dcd0a46a8e7e0c5befc259 1709862192
213 2162285640 cf4631c10b7d576bd0582bc95f1d756f 1709862262
214 2162285408 3bd25088458e2652e0f298596a41e26d 1709862252
215 2162286617 3b3f629c93cff29f0f32d2f5a0306f1f 1709862297
216 2162288343 f13f4c4df1f0ffc7a7e2f337874483cf 1709862375
217 2162286729 d140a14f49c31aeef674f39ac64ec236 1709862300
218 2162284614 d2238f9b6754d645b729a8327d6384de 1709862230
219 2162284703 3c6fa049d82c6727526a2cac379a3402 1709862232
220 2162285867 96a4fb070d91bbd022f1a13ce9cc5cc9 1709862274
221 2162285971 1542a29ebca029f5a89819468da6a337 1709862277
222 2162289857 e3a0afae21e7b8ecd53af1ffee5ee369 1709862442
223 2162287995 ddef48b9452148fcb875bce4e9d8bc02 1709862348
                                       name        products resourceType
1   MCDWD_L3_F3_NRT.A2024067.h33v03.061.tif MCDWD_L3_F3_NRT         File
2   MCDWD_L3_F3_NRT.A2024067.h10v09.061.tif MCDWD_L3_F3_NRT         File
3   MCDWD_L3_F3_NRT.A2024067.h29v04.061.tif MCDWD_L3_F3_NRT         File
4   MCDWD_L3_F3_NRT.A2024067.h17v06.061.tif MCDWD_L3_F3_NRT         File
5   MCDWD_L3_F3_NRT.A2024067.h19v09.061.tif MCDWD_L3_F3_NRT         File
6   MCDWD_L3_F3_NRT.A2024067.h28v08.061.tif MCDWD_L3_F3_NRT         File
7   MCDWD_L3_F3_NRT.A2024067.h07v02.061.tif MCDWD_L3_F3_NRT         File
8   MCDWD_L3_F3_NRT.A2024067.h27v08.061.tif MCDWD_L3_F3_NRT         File
9   MCDWD_L3_F3_NRT.A2024067.h32v04.061.tif MCDWD_L3_F3_NRT         File
10  MCDWD_L3_F3_NRT.A2024067.h21v05.061.tif MCDWD_L3_F3_NRT         File
11  MCDWD_L3_F3_NRT.A2024067.h26v04.061.tif MCDWD_L3_F3_NRT         File
12  MCDWD_L3_F3_NRT.A2024067.h07v04.061.tif MCDWD_L3_F3_NRT         File
13  MCDWD_L3_F3_NRT.A2024067.h06v03.061.tif MCDWD_L3_F3_NRT         File
14  MCDWD_L3_F3_NRT.A2024067.h23v03.061.tif MCDWD_L3_F3_NRT         File
15  MCDWD_L3_F3_NRT.A2024067.h18v08.061.tif MCDWD_L3_F3_NRT         File
16  MCDWD_L3_F3_NRT.A2024067.h29v07.061.tif MCDWD_L3_F3_NRT         File
17  MCDWD_L3_F3_NRT.A2024067.h25v05.061.tif MCDWD_L3_F3_NRT         File
18  MCDWD_L3_F3_NRT.A2024067.h08v02.061.tif MCDWD_L3_F3_NRT         File
19  MCDWD_L3_F3_NRT.A2024067.h31v03.061.tif MCDWD_L3_F3_NRT         File
20  MCDWD_L3_F3_NRT.A2024067.h08v04.061.tif MCDWD_L3_F3_NRT         File
21  MCDWD_L3_F3_NRT.A2024067.h12v11.061.tif MCDWD_L3_F3_NRT         File
22  MCDWD_L3_F3_NRT.A2024067.h20v03.061.tif MCDWD_L3_F3_NRT         File
23  MCDWD_L3_F3_NRT.A2024067.h11v12.061.tif MCDWD_L3_F3_NRT         File
24  MCDWD_L3_F3_NRT.A2024067.h13v10.061.tif MCDWD_L3_F3_NRT         File
25  MCDWD_L3_F3_NRT.A2024067.h11v03.061.tif MCDWD_L3_F3_NRT         File
26  MCDWD_L3_F3_NRT.A2024067.h22v02.061.tif MCDWD_L3_F3_NRT         File
27  MCDWD_L3_F3_NRT.A2024067.h27v07.061.tif MCDWD_L3_F3_NRT         File
28  MCDWD_L3_F3_NRT.A2024067.h20v05.061.tif MCDWD_L3_F3_NRT         File
29  MCDWD_L3_F3_NRT.A2024067.h22v08.061.tif MCDWD_L3_F3_NRT         File
30  MCDWD_L3_F3_NRT.A2024067.h00v02.061.tif MCDWD_L3_F3_NRT         File
31  MCDWD_L3_F3_NRT.A2024067.h19v03.061.tif MCDWD_L3_F3_NRT         File
32  MCDWD_L3_F3_NRT.A2024067.h29v05.061.tif MCDWD_L3_F3_NRT         File
33  MCDWD_L3_F3_NRT.A2024067.h27v06.061.tif MCDWD_L3_F3_NRT         File
34  MCDWD_L3_F3_NRT.A2024067.h12v03.061.tif MCDWD_L3_F3_NRT         File
35  MCDWD_L3_F3_NRT.A2024067.h16v06.061.tif MCDWD_L3_F3_NRT         File
36  MCDWD_L3_F3_NRT.A2024067.h12v10.061.tif MCDWD_L3_F3_NRT         File
37  MCDWD_L3_F3_NRT.A2024067.h02v03.061.tif MCDWD_L3_F3_NRT         File
38  MCDWD_L3_F3_NRT.A2024067.h29v12.061.tif MCDWD_L3_F3_NRT         File
39  MCDWD_L3_F3_NRT.A2024067.h29v09.061.tif MCDWD_L3_F3_NRT         File
40  MCDWD_L3_F3_NRT.A2024067.h28v07.061.tif MCDWD_L3_F3_NRT         File
41  MCDWD_L3_F3_NRT.A2024067.h10v03.061.tif MCDWD_L3_F3_NRT         File
42  MCDWD_L3_F3_NRT.A2024067.h08v06.061.tif MCDWD_L3_F3_NRT         File
43  MCDWD_L3_F3_NRT.A2024067.h27v02.061.tif MCDWD_L3_F3_NRT         File
44  MCDWD_L3_F3_NRT.A2024067.h09v08.061.tif MCDWD_L3_F3_NRT         File
45  MCDWD_L3_F3_NRT.A2024067.h02v02.061.tif MCDWD_L3_F3_NRT         File
46  MCDWD_L3_F3_NRT.A2024067.h20v11.061.tif MCDWD_L3_F3_NRT         File
47  MCDWD_L3_F3_NRT.A2024067.h31v11.061.tif MCDWD_L3_F3_NRT         File
48  MCDWD_L3_F3_NRT.A2024067.h11v09.061.tif MCDWD_L3_F3_NRT         File
49  MCDWD_L3_F3_NRT.A2024067.h31v12.061.tif MCDWD_L3_F3_NRT         File
50  MCDWD_L3_F3_NRT.A2024067.h30v06.061.tif MCDWD_L3_F3_NRT         File
51  MCDWD_L3_F3_NRT.A2024067.h31v04.061.tif MCDWD_L3_F3_NRT         File
52  MCDWD_L3_F3_NRT.A2024067.h26v03.061.tif MCDWD_L3_F3_NRT         File
53  MCDWD_L3_F3_NRT.A2024067.h08v05.061.tif MCDWD_L3_F3_NRT         File
54  MCDWD_L3_F3_NRT.A2024067.h10v11.061.tif MCDWD_L3_F3_NRT         File
55  MCDWD_L3_F3_NRT.A2024067.h12v09.061.tif MCDWD_L3_F3_NRT         File
56  MCDWD_L3_F3_NRT.A2024067.h20v04.061.tif MCDWD_L3_F3_NRT         File
57  MCDWD_L3_F3_NRT.A2024067.h11v10.061.tif MCDWD_L3_F3_NRT         File
58  MCDWD_L3_F3_NRT.A2024067.h29v11.061.tif MCDWD_L3_F3_NRT         File
59  MCDWD_L3_F3_NRT.A2024067.h30v09.061.tif MCDWD_L3_F3_NRT         File
60  MCDWD_L3_F3_NRT.A2024067.h27v03.061.tif MCDWD_L3_F3_NRT         File
61  MCDWD_L3_F3_NRT.A2024067.h02v06.061.tif MCDWD_L3_F3_NRT         File
62  MCDWD_L3_F3_NRT.A2024067.h32v03.061.tif MCDWD_L3_F3_NRT         File
63  MCDWD_L3_F3_NRT.A2024067.h25v07.061.tif MCDWD_L3_F3_NRT         File
64  MCDWD_L3_F3_NRT.A2024067.h22v07.061.tif MCDWD_L3_F3_NRT         File
65  MCDWD_L3_F3_NRT.A2024067.h19v05.061.tif MCDWD_L3_F3_NRT         File
66  MCDWD_L3_F3_NRT.A2024067.h16v07.061.tif MCDWD_L3_F3_NRT         File
67  MCDWD_L3_F3_NRT.A2024067.h17v07.061.tif MCDWD_L3_F3_NRT         File
68  MCDWD_L3_F3_NRT.A2024067.h31v02.061.tif MCDWD_L3_F3_NRT         File
69  MCDWD_L3_F3_NRT.A2024067.h12v12.061.tif MCDWD_L3_F3_NRT         File
70  MCDWD_L3_F3_NRT.A2024067.h30v12.061.tif MCDWD_L3_F3_NRT         File
71  MCDWD_L3_F3_NRT.A2024067.h33v12.061.tif MCDWD_L3_F3_NRT         File
72  MCDWD_L3_F3_NRT.A2024067.h26v06.061.tif MCDWD_L3_F3_NRT         File
73  MCDWD_L3_F3_NRT.A2024067.h11v07.061.tif MCDWD_L3_F3_NRT         File
74  MCDWD_L3_F3_NRT.A2024067.h07v03.061.tif MCDWD_L3_F3_NRT         File
75  MCDWD_L3_F3_NRT.A2024067.h33v11.061.tif MCDWD_L3_F3_NRT         File
76  MCDWD_L3_F3_NRT.A2024067.h06v04.061.tif MCDWD_L3_F3_NRT         File
77  MCDWD_L3_F3_NRT.A2024067.h21v10.061.tif MCDWD_L3_F3_NRT         File
78  MCDWD_L3_F3_NRT.A2024067.h22v10.061.tif MCDWD_L3_F3_NRT         File
79  MCDWD_L3_F3_NRT.A2024067.h11v04.061.tif MCDWD_L3_F3_NRT         File
80  MCDWD_L3_F3_NRT.A2024067.h30v04.061.tif MCDWD_L3_F3_NRT         File
81  MCDWD_L3_F3_NRT.A2024067.h22v04.061.tif MCDWD_L3_F3_NRT         File
82  MCDWD_L3_F3_NRT.A2024067.h04v03.061.tif MCDWD_L3_F3_NRT         File
83  MCDWD_L3_F3_NRT.A2024067.h23v07.061.tif MCDWD_L3_F3_NRT         File
84  MCDWD_L3_F3_NRT.A2024067.h27v05.061.tif MCDWD_L3_F3_NRT         File
85  MCDWD_L3_F3_NRT.A2024067.h32v09.061.tif MCDWD_L3_F3_NRT         File
86  MCDWD_L3_F3_NRT.A2024067.h19v07.061.tif MCDWD_L3_F3_NRT         File
87  MCDWD_L3_F3_NRT.A2024067.h06v02.061.tif MCDWD_L3_F3_NRT         File
88  MCDWD_L3_F3_NRT.A2024067.h23v02.061.tif MCDWD_L3_F3_NRT         File
89  MCDWD_L3_F3_NRT.A2024067.h26v07.061.tif MCDWD_L3_F3_NRT         File
90  MCDWD_L3_F3_NRT.A2024067.h22v03.061.tif MCDWD_L3_F3_NRT         File
91  MCDWD_L3_F3_NRT.A2024067.h19v06.061.tif MCDWD_L3_F3_NRT         File
92  MCDWD_L3_F3_NRT.A2024067.h18v05.061.tif MCDWD_L3_F3_NRT         File
93  MCDWD_L3_F3_NRT.A2024067.h05v03.061.tif MCDWD_L3_F3_NRT         File
94  MCDWD_L3_F3_NRT.A2024067.h19v12.061.tif MCDWD_L3_F3_NRT         File
95  MCDWD_L3_F3_NRT.A2024067.h03v02.061.tif MCDWD_L3_F3_NRT         File
96  MCDWD_L3_F3_NRT.A2024067.h12v08.061.tif MCDWD_L3_F3_NRT         File
97  MCDWD_L3_F3_NRT.A2024067.h32v13.061.tif MCDWD_L3_F3_NRT         File
98  MCDWD_L3_F3_NRT.A2024067.h08v03.061.tif MCDWD_L3_F3_NRT         File
99  MCDWD_L3_F3_NRT.A2024067.h20v09.061.tif MCDWD_L3_F3_NRT         File
100 MCDWD_L3_F3_NRT.A2024067.h21v07.061.tif MCDWD_L3_F3_NRT         File
101 MCDWD_L3_F3_NRT.A2024067.h25v06.061.tif MCDWD_L3_F3_NRT         File
102 MCDWD_L3_F3_NRT.A2024067.h09v05.061.tif MCDWD_L3_F3_NRT         File
103 MCDWD_L3_F3_NRT.A2024067.h19v08.061.tif MCDWD_L3_F3_NRT         File
104 MCDWD_L3_F3_NRT.A2024067.h29v08.061.tif MCDWD_L3_F3_NRT         File
105 MCDWD_L3_F3_NRT.A2024067.h17v04.061.tif MCDWD_L3_F3_NRT         File
106 MCDWD_L3_F3_NRT.A2024067.h13v09.061.tif MCDWD_L3_F3_NRT         File
107 MCDWD_L3_F3_NRT.A2024067.h18v02.061.tif MCDWD_L3_F3_NRT         File
108 MCDWD_L3_F3_NRT.A2024067.h11v02.061.tif MCDWD_L3_F3_NRT         File
109 MCDWD_L3_F3_NRT.A2024067.h15v02.061.tif MCDWD_L3_F3_NRT         File
110 MCDWD_L3_F3_NRT.A2024067.h34v02.061.tif MCDWD_L3_F3_NRT         File
111 MCDWD_L3_F3_NRT.A2024067.h07v06.061.tif MCDWD_L3_F3_NRT         File
112 MCDWD_L3_F3_NRT.A2024067.h17v03.061.tif MCDWD_L3_F3_NRT         File
113 MCDWD_L3_F3_NRT.A2024067.h24v02.061.tif MCDWD_L3_F3_NRT         File
114 MCDWD_L3_F3_NRT.A2024067.h10v12.061.tif MCDWD_L3_F3_NRT         File
115 MCDWD_L3_F3_NRT.A2024067.h13v11.061.tif MCDWD_L3_F3_NRT         File
116 MCDWD_L3_F3_NRT.A2024067.h05v02.061.tif MCDWD_L3_F3_NRT         File
117 MCDWD_L3_F3_NRT.A2024067.h31v09.061.tif MCDWD_L3_F3_NRT         File
118 MCDWD_L3_F3_NRT.A2024067.h10v05.061.tif MCDWD_L3_F3_NRT         File
119 MCDWD_L3_F3_NRT.A2024067.h10v04.061.tif MCDWD_L3_F3_NRT         File
120 MCDWD_L3_F3_NRT.A2024067.h20v06.061.tif MCDWD_L3_F3_NRT         File
121 MCDWD_L3_F3_NRT.A2024067.h25v02.061.tif MCDWD_L3_F3_NRT         File
122 MCDWD_L3_F3_NRT.A2024067.h22v06.061.tif MCDWD_L3_F3_NRT         File
123 MCDWD_L3_F3_NRT.A2024067.h28v09.061.tif MCDWD_L3_F3_NRT         File
124 MCDWD_L3_F3_NRT.A2024067.h11v13.061.tif MCDWD_L3_F3_NRT         File
125 MCDWD_L3_F3_NRT.A2024067.h33v02.061.tif MCDWD_L3_F3_NRT         File
126 MCDWD_L3_F3_NRT.A2024067.h12v04.061.tif MCDWD_L3_F3_NRT         File
127 MCDWD_L3_F3_NRT.A2024067.h07v05.061.tif MCDWD_L3_F3_NRT         File
128 MCDWD_L3_F3_NRT.A2024067.h21v08.061.tif MCDWD_L3_F3_NRT         File
129 MCDWD_L3_F3_NRT.A2024067.h09v02.061.tif MCDWD_L3_F3_NRT         File
130 MCDWD_L3_F3_NRT.A2024067.h02v07.061.tif MCDWD_L3_F3_NRT         File
131 MCDWD_L3_F3_NRT.A2024067.h28v03.061.tif MCDWD_L3_F3_NRT         File
132 MCDWD_L3_F3_NRT.A2024067.h20v02.061.tif MCDWD_L3_F3_NRT         File
133 MCDWD_L3_F3_NRT.A2024067.h34v03.061.tif MCDWD_L3_F3_NRT         File
134 MCDWD_L3_F3_NRT.A2024067.h09v09.061.tif MCDWD_L3_F3_NRT         File
135 MCDWD_L3_F3_NRT.A2024067.h10v08.061.tif MCDWD_L3_F3_NRT         File
136 MCDWD_L3_F3_NRT.A2024067.h09v04.061.tif MCDWD_L3_F3_NRT         File
137 MCDWD_L3_F3_NRT.A2024067.h19v11.061.tif MCDWD_L3_F3_NRT         File
138 MCDWD_L3_F3_NRT.A2024067.h09v06.061.tif MCDWD_L3_F3_NRT         File
139 MCDWD_L3_F3_NRT.A2024067.h11v14.061.tif MCDWD_L3_F3_NRT         File
140 MCDWD_L3_F3_NRT.A2024067.h26v08.061.tif MCDWD_L3_F3_NRT         File
141 MCDWD_L3_F3_NRT.A2024067.h18v07.061.tif MCDWD_L3_F3_NRT         File
142 MCDWD_L3_F3_NRT.A2024067.h09v03.061.tif MCDWD_L3_F3_NRT         File
143 MCDWD_L3_F3_NRT.A2024067.h30v05.061.tif MCDWD_L3_F3_NRT         File
144 MCDWD_L3_F3_NRT.A2024067.h26v02.061.tif MCDWD_L3_F3_NRT         File
145 MCDWD_L3_F3_NRT.A2024067.h18v06.061.tif MCDWD_L3_F3_NRT         File
146 MCDWD_L3_F3_NRT.A2024067.h08v07.061.tif MCDWD_L3_F3_NRT         File
147 MCDWD_L3_F3_NRT.A2024067.h05v04.061.tif MCDWD_L3_F3_NRT         File
148 MCDWD_L3_F3_NRT.A2024067.h35v12.061.tif MCDWD_L3_F3_NRT         File
149 MCDWD_L3_F3_NRT.A2024067.h21v04.061.tif MCDWD_L3_F3_NRT         File
150 MCDWD_L3_F3_NRT.A2024067.h05v05.061.tif MCDWD_L3_F3_NRT         File
151 MCDWD_L3_F3_NRT.A2024067.h24v04.061.tif MCDWD_L3_F3_NRT         File
152 MCDWD_L3_F3_NRT.A2024067.h30v10.061.tif MCDWD_L3_F3_NRT         File
153 MCDWD_L3_F3_NRT.A2024067.h24v06.061.tif MCDWD_L3_F3_NRT         File
154 MCDWD_L3_F3_NRT.A2024067.h29v03.061.tif MCDWD_L3_F3_NRT         File
155 MCDWD_L3_F3_NRT.A2024067.h31v10.061.tif MCDWD_L3_F3_NRT         File
156 MCDWD_L3_F3_NRT.A2024067.h28v06.061.tif MCDWD_L3_F3_NRT         File
157 MCDWD_L3_F3_NRT.A2024067.h23v05.061.tif MCDWD_L3_F3_NRT         File
158 MCDWD_L3_F3_NRT.A2024067.h18v03.061.tif MCDWD_L3_F3_NRT         File
159 MCDWD_L3_F3_NRT.A2024067.h10v14.061.tif MCDWD_L3_F3_NRT         File
160 MCDWD_L3_F3_NRT.A2024067.h30v07.061.tif MCDWD_L3_F3_NRT         File
161 MCDWD_L3_F3_NRT.A2024067.h20v10.061.tif MCDWD_L3_F3_NRT         File
162 MCDWD_L3_F3_NRT.A2024067.h27v04.061.tif MCDWD_L3_F3_NRT         File
163 MCDWD_L3_F3_NRT.A2024067.h06v06.061.tif MCDWD_L3_F3_NRT         File
164 MCDWD_L3_F3_NRT.A2024067.h32v11.061.tif MCDWD_L3_F3_NRT         File
165 MCDWD_L3_F3_NRT.A2024067.h19v10.061.tif MCDWD_L3_F3_NRT         File
166 MCDWD_L3_F3_NRT.A2024067.h21v03.061.tif MCDWD_L3_F3_NRT         File
167 MCDWD_L3_F3_NRT.A2024067.h10v10.061.tif MCDWD_L3_F3_NRT         File
168 MCDWD_L3_F3_NRT.A2024067.h22v11.061.tif MCDWD_L3_F3_NRT         File
169 MCDWD_L3_F3_NRT.A2024067.h21v06.061.tif MCDWD_L3_F3_NRT         File
170 MCDWD_L3_F3_NRT.A2024067.h09v07.061.tif MCDWD_L3_F3_NRT         File
171 MCDWD_L3_F3_NRT.A2024067.h26v05.061.tif MCDWD_L3_F3_NRT         File
172 MCDWD_L3_F3_NRT.A2024067.h21v11.061.tif MCDWD_L3_F3_NRT         File
173 MCDWD_L3_F3_NRT.A2024067.h14v09.061.tif MCDWD_L3_F3_NRT         File
174 MCDWD_L3_F3_NRT.A2024067.h28v02.061.tif MCDWD_L3_F3_NRT         File
175 MCDWD_L3_F3_NRT.A2024067.h34v13.061.tif MCDWD_L3_F3_NRT         File
176 MCDWD_L3_F3_NRT.A2024067.h19v04.061.tif MCDWD_L3_F3_NRT         File
177 MCDWD_L3_F3_NRT.A2024067.h30v11.061.tif MCDWD_L3_F3_NRT         File
178 MCDWD_L3_F3_NRT.A2024067.h28v05.061.tif MCDWD_L3_F3_NRT         File
179 MCDWD_L3_F3_NRT.A2024067.h29v02.061.tif MCDWD_L3_F3_NRT         File
180 MCDWD_L3_F3_NRT.A2024067.h21v09.061.tif MCDWD_L3_F3_NRT         File
181 MCDWD_L3_F3_NRT.A2024067.h18v04.061.tif MCDWD_L3_F3_NRT         File
182 MCDWD_L3_F3_NRT.A2024067.h30v02.061.tif MCDWD_L3_F3_NRT         File
183 MCDWD_L3_F3_NRT.A2024067.h16v08.061.tif MCDWD_L3_F3_NRT         File
184 MCDWD_L3_F3_NRT.A2024067.h11v08.061.tif MCDWD_L3_F3_NRT         File
185 MCDWD_L3_F3_NRT.A2024067.h17v05.061.tif MCDWD_L3_F3_NRT         File
186 MCDWD_L3_F3_NRT.A2024067.h01v02.061.tif MCDWD_L3_F3_NRT         File
187 MCDWD_L3_F3_NRT.A2024067.h10v06.061.tif MCDWD_L3_F3_NRT         File
188 MCDWD_L3_F3_NRT.A2024067.h06v05.061.tif MCDWD_L3_F3_NRT         File
189 MCDWD_L3_F3_NRT.A2024067.h23v04.061.tif MCDWD_L3_F3_NRT         File
190 MCDWD_L3_F3_NRT.A2024067.h10v02.061.tif MCDWD_L3_F3_NRT         File
191 MCDWD_L3_F3_NRT.A2024067.h28v04.061.tif MCDWD_L3_F3_NRT         File
192 MCDWD_L3_F3_NRT.A2024067.h22v09.061.tif MCDWD_L3_F3_NRT         File
193 MCDWD_L3_F3_NRT.A2024067.h32v05.061.tif MCDWD_L3_F3_NRT         File
194 MCDWD_L3_F3_NRT.A2024067.h35v02.061.tif MCDWD_L3_F3_NRT         File
195 MCDWD_L3_F3_NRT.A2024067.h07v07.061.tif MCDWD_L3_F3_NRT         File
196 MCDWD_L3_F3_NRT.A2024067.h01v03.061.tif MCDWD_L3_F3_NRT         File
197 MCDWD_L3_F3_NRT.A2024067.h20v07.061.tif MCDWD_L3_F3_NRT         File
198 MCDWD_L3_F3_NRT.A2024067.h30v08.061.tif MCDWD_L3_F3_NRT         File
199 MCDWD_L3_F3_NRT.A2024067.h25v08.061.tif MCDWD_L3_F3_NRT         File
200 MCDWD_L3_F3_NRT.A2024067.h11v11.061.tif MCDWD_L3_F3_NRT         File
201 MCDWD_L3_F3_NRT.A2024067.h21v02.061.tif MCDWD_L3_F3_NRT         File
202 MCDWD_L3_F3_NRT.A2024067.h31v05.061.tif MCDWD_L3_F3_NRT         File
203 MCDWD_L3_F3_NRT.A2024067.h20v08.061.tif MCDWD_L3_F3_NRT         File
204 MCDWD_L3_F3_NRT.A2024067.h30v03.061.tif MCDWD_L3_F3_NRT         File
205 MCDWD_L3_F3_NRT.A2024067.h04v02.061.tif MCDWD_L3_F3_NRT         File
206 MCDWD_L3_F3_NRT.A2024067.h35v13.061.tif MCDWD_L3_F3_NRT         File
207 MCDWD_L3_F3_NRT.A2024067.h16v02.061.tif MCDWD_L3_F3_NRT         File
208 MCDWD_L3_F3_NRT.A2024067.h32v10.061.tif MCDWD_L3_F3_NRT         File
209 MCDWD_L3_F3_NRT.A2024067.h25v04.061.tif MCDWD_L3_F3_NRT         File
210 MCDWD_L3_F3_NRT.A2024067.h17v08.061.tif MCDWD_L3_F3_NRT         File
211 MCDWD_L3_F3_NRT.A2024067.h32v12.061.tif MCDWD_L3_F3_NRT         File
212 MCDWD_L3_F3_NRT.A2024067.h22v05.061.tif MCDWD_L3_F3_NRT         File
213 MCDWD_L3_F3_NRT.A2024067.h24v03.061.tif MCDWD_L3_F3_NRT         File
214 MCDWD_L3_F3_NRT.A2024067.h25v03.061.tif MCDWD_L3_F3_NRT         File
215 MCDWD_L3_F3_NRT.A2024067.h19v02.061.tif MCDWD_L3_F3_NRT         File
216 MCDWD_L3_F3_NRT.A2024067.h10v13.061.tif MCDWD_L3_F3_NRT         File
217 MCDWD_L3_F3_NRT.A2024067.h14v10.061.tif MCDWD_L3_F3_NRT         File
218 MCDWD_L3_F3_NRT.A2024067.h29v06.061.tif MCDWD_L3_F3_NRT         File
219 MCDWD_L3_F3_NRT.A2024067.h23v06.061.tif MCDWD_L3_F3_NRT         File
220 MCDWD_L3_F3_NRT.A2024067.h24v05.061.tif MCDWD_L3_F3_NRT         File
221 MCDWD_L3_F3_NRT.A2024067.h20v12.061.tif MCDWD_L3_F3_NRT         File
222 MCDWD_L3_F3_NRT.A2024067.h32v02.061.tif MCDWD_L3_F3_NRT         File
223 MCDWD_L3_F3_NRT.A2024067.h10v07.061.tif MCDWD_L3_F3_NRT         File
                                                               self    size
1   /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h33v03.061.tif  557372
2   /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h10v09.061.tif   91878
3   /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h29v04.061.tif  524803
4   /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h17v06.061.tif  213661
5   /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h19v09.061.tif  299432
6   /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h28v08.061.tif  869224
7   /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h07v02.061.tif 1046755
8   /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h27v08.061.tif  444425
9   /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h32v04.061.tif  746078
10  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h21v05.061.tif  423822
11  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h26v04.061.tif  401595
12  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h07v04.061.tif  436992
13  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h06v03.061.tif  705140
14  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h23v03.061.tif  336678
15  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h18v08.061.tif  219966
16  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h29v07.061.tif  722573
17  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h25v05.061.tif  176862
18  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h08v02.061.tif  739668
19  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h31v03.061.tif  399139
20  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h08v04.061.tif  565358
21  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h12v11.061.tif  335851
22  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h20v03.061.tif  518869
23  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h11v12.061.tif  494015
24  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h13v10.061.tif  367615
25  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h11v03.061.tif  657913
26  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h22v02.061.tif  526320
27  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h27v07.061.tif  388817
28  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h20v05.061.tif  451858
29  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h22v08.061.tif  850748
30  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h00v02.061.tif  385234
31  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h19v03.061.tif  661653
32  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h29v05.061.tif  130649
33  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h27v06.061.tif  268031
34  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h12v03.061.tif  481636
35  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h16v06.061.tif  491658
36  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h12v10.061.tif  135423
37  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h02v03.061.tif  806812
38  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h29v12.061.tif  624355
39  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h29v09.061.tif  591103
40  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h28v07.061.tif  711335
41  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h10v03.061.tif  530139
42  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h08v06.061.tif  751372
43  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h27v02.061.tif  167807
44  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h09v08.061.tif 1028412
45  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h02v02.061.tif  440816
46  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h20v11.061.tif  591617
47  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h31v11.061.tif  427683
48  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h11v09.061.tif  376435
49  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h31v12.061.tif  604988
50  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h30v06.061.tif  450904
51  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h31v04.061.tif  368660
52  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h26v03.061.tif  170488
53  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h08v05.061.tif  488034
54  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h10v11.061.tif  153865
55  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h12v09.061.tif  401746
56  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h20v04.061.tif  259329
57  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h11v10.061.tif  181825
58  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h29v11.061.tif  628609
59  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h30v09.061.tif  914310
60  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h27v03.061.tif  148729
61  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h02v06.061.tif 1223608
62  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h32v03.061.tif  503769
63  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h25v07.061.tif  664528
64  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h22v07.061.tif  535936
65  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h19v05.061.tif  274963
66  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h16v07.061.tif  292797
67  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h17v07.061.tif  290510
68  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h31v02.061.tif  638801
69  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h12v12.061.tif  496489
70  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h30v12.061.tif  392032
71  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h33v12.061.tif  827624
72  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h26v06.061.tif  379948
73  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h11v07.061.tif  946753
74  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h07v03.061.tif  823294
75  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h33v11.061.tif 1162275
76  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h06v04.061.tif  278694
77  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h21v10.061.tif  293669
78  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h22v10.061.tif  697420
79  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h11v04.061.tif  238519
80  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h30v04.061.tif  543494
81  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h22v04.061.tif  305706
82  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h04v03.061.tif  379154
83  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h23v07.061.tif  617387
84  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h27v05.061.tif  261838
85  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h32v09.061.tif  438938
86  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h19v07.061.tif  254316
87  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h06v02.061.tif 1201093
88  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h23v02.061.tif  596248
89  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h26v07.061.tif  482029
90  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h22v03.061.tif  510143
91  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h19v06.061.tif  411361
92  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h18v05.061.tif  380415
93  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h05v03.061.tif  373328
94  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h19v12.061.tif  859562
95  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h03v02.061.tif  501592
96  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h12v08.061.tif  845909
97  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h32v13.061.tif  620043
98  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h08v03.061.tif  565249
99  /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h20v09.061.tif  206045
100 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h21v07.061.tif  333122
101 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h25v06.061.tif  496575
102 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h09v05.061.tif  236896
103 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h19v08.061.tif  219880
104 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h29v08.061.tif  741564
105 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h17v04.061.tif  611937
106 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h13v09.061.tif  349469
107 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h18v02.061.tif  356586
108 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h11v02.061.tif  481854
109 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h15v02.061.tif  573926
110 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h34v02.061.tif  349345
111 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h07v06.061.tif  321377
112 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h17v03.061.tif  528263
113 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h24v02.061.tif 1157860
114 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h10v12.061.tif  674474
115 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h13v11.061.tif  657658
116 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h05v02.061.tif  684031
117 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h31v09.061.tif  727354
118 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h10v05.061.tif  501145
119 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h10v04.061.tif  588644
120 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h20v06.061.tif  322104
121 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h25v02.061.tif 1143167
122 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h22v06.061.tif  464688
123 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h28v09.061.tif  266037
124 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h11v13.061.tif  403395
125 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h33v02.061.tif  350471
126 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h12v04.061.tif  398299
127 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h07v05.061.tif  496771
128 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h21v08.061.tif  638934
129 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h09v02.061.tif  545901
130 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h02v07.061.tif  617869
131 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h28v03.061.tif  245258
132 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h20v02.061.tif 1101567
133 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h34v03.061.tif  451788
134 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h09v09.061.tif 1494644
135 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h10v08.061.tif  333187
136 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h09v04.061.tif  652450
137 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h19v11.061.tif  329478
138 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h09v06.061.tif  845812
139 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h11v14.061.tif  322328
140 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h26v08.061.tif  551110
141 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h18v07.061.tif  408571
142 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h09v03.061.tif  427898
143 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h30v05.061.tif  235781
144 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h26v02.061.tif  942812
145 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h18v06.061.tif  425727
146 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h08v07.061.tif  508731
147 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h05v04.061.tif  667683
148 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h35v12.061.tif 1061528
149 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h21v04.061.tif  255727
150 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h05v05.061.tif  905578
151 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h24v04.061.tif  529159
152 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h30v10.061.tif  469004
153 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h24v06.061.tif  536936
154 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h29v03.061.tif  247384
155 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h31v10.061.tif  293320
156 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h28v06.061.tif  161187
157 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h23v05.061.tif  415859
158 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h18v03.061.tif  535981
159 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h10v14.061.tif  415213
160 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h30v07.061.tif  559085
161 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h20v10.061.tif  685442
162 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h27v04.061.tif  467491
163 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h06v06.061.tif 1195888
164 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h32v11.061.tif  752024
165 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h19v10.061.tif  495879
166 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h21v03.061.tif  694236
167 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h10v10.061.tif  521556
168 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h22v11.061.tif  544569
169 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h21v06.061.tif  466417
170 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h09v07.061.tif  622460
171 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h26v05.061.tif  355098
172 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h21v11.061.tif  485885
173 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h14v09.061.tif  865835
174 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h28v02.061.tif  780988
175 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h34v13.061.tif  874619
176 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h19v04.061.tif  367239
177 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h30v11.061.tif   59858
178 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h28v05.061.tif  162765
179 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h29v02.061.tif  971940
180 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h21v09.061.tif  545094
181 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h18v04.061.tif  345580
182 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h30v02.061.tif  940005
183 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h16v08.061.tif 1098957
184 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h11v08.061.tif  437098
185 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h17v05.061.tif  559187
186 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h01v02.061.tif  556538
187 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h10v06.061.tif  921271
188 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h06v05.061.tif  417863
189 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h23v04.061.tif  611642
190 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h10v02.061.tif  701116
191 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h28v04.061.tif  492485
192 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h22v09.061.tif 1212243
193 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h32v05.061.tif  111893
194 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h35v02.061.tif  570008
195 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h07v07.061.tif  594316
196 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h01v03.061.tif  706032
197 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h20v07.061.tif  413813
198 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h30v08.061.tif  965380
199 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h25v08.061.tif 1267064
200 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h11v11.061.tif  293381
201 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h21v02.061.tif  912000
202 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h31v05.061.tif  157342
203 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h20v08.061.tif  465946
204 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h30v03.061.tif  417887
205 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h04v02.061.tif  400987
206 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h35v13.061.tif  906808
207 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h16v02.061.tif  405068
208 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h32v10.061.tif  727360
209 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h25v04.061.tif  437536
210 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h17v08.061.tif  563616
211 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h32v12.061.tif  479559
212 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h22v05.061.tif  429776
213 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h24v03.061.tif  555741
214 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h25v03.061.tif  452553
215 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h19v02.061.tif  834743
216 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h10v13.061.tif  599893
217 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h14v10.061.tif  748892
218 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h29v06.061.tif  171494
219 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h23v06.061.tif  637013
220 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h24v05.061.tif  308275
221 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h20v12.061.tif  769392
222 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h32v02.061.tif  228913
223 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h10v07.061.tif  794864

Search the Data Frame and subset the rows that contain tile_code in the downloadsLink column.

# Subset rows where the downloadsLink column contains the tile code
subset_df <- df[grepl(tile_code, df$downloadsLink), ]

subset_df
    archiveSets      cksum    collections               dataDay
150          61 3486815419 modis-nrt-c6.1 2024-067 = 2024-03-07
                                                                                          downloadsLink
150 https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h05v05.061.tif
        fileId                           md5sum      mtime
150 2162289926 701fabe1354a4dcaf99248a89b49c74f 1709862445
                                       name        products resourceType
150 MCDWD_L3_F3_NRT.A2024067.h05v05.061.tif MCDWD_L3_F3_NRT         File
                                                               self   size
150 /api/v2/content/details/MCDWD_L3_F3_NRT.A2024067.h05v05.061.tif 905578

If there is only 1 row, select the string ‘downloadsLink’ column:

download_link <- subset_df$downloadsLink
print(download_link)
[1] "https://nrt3.modaps.eosdis.nasa.gov/api/v2/content/archives/MCDWD_L3_F3_NRT.A2024067.h05v05.061.tif"

Read the Data

Use the “read_stars()” function from the “stars” R Library to read the geoTiff raster.
The raster is assigned to the “raster_df” variable:

raster_df <- stars::read_stars(download_link)

Set the Coordinate Reference System (CRS) to a new raster “my_raster” to plot it in a map. For example, Web Mercator EPSG:3857. Use the st_transform() function:

raster_df <- sf::st_transform(raster_df, 3857)

Now the raster data should be stored as a variable “my_raster” with the CRS set to Web Mercator EPSG:3857

Visualizing NRT Flood Data

Plot the raster to quickly view it:

plot(raster_df, axes = TRUE)

Create NRT Flood Plot with Classification

Refer to the MODIS NRT Global Flood Product User Guide for more information.

NRT Flood data has 5 classifications:

Code Definition
0 No Water
1 Surface Water
2 Recurring flood4
3 Flood (unusual)
255 Insufficient data

To view the data in this classification, we’ll need to create a classified legend; however, the NRT Flood data is stored in decimal numbers (aka floating-point). Create class breaks dividing the data by the following breaks, and corresponding colors and labels:

class_breaks <- c(-Inf, 0.1, 1.1, 2.1, 3.1)
colors <- c( "gray", "blue", "yellow", "red")

labels = c("0: No Water", "1: Surface Water", "2: Recurring flood", "3: Flood (unusual)")

Add a title for the plot that includes the year, day of year, and tile code:

title = paste("Near Real-Time Flood F3", year_day, tile_code)

Generate a basemap from Esri Imagery

To generate a basemap that shows the location of our raster, we must first create a bounding box to match raster_df.

bbox <-  sf::st_bbox(raster_df)

The basemap_stars() function from the stars library allows us to access Esri imagery layers. We choose “world_imagery” as our background and assign it to the object bm_m.

bm_m <- basemaps::basemap_stars(bbox, map_service = "esri", map_type = "world_imagery")
Loading basemap 'world_imagery' from map service 'esri'...

The st_rgb function lets us turn the RGB stars item into a single image

bm_m <- stars::st_rgb(bm_m)

Plot basemap and NRT Flood data

Generate a plot from the tmap library using the tm_shape() function. We will plot the basemap and the raster_df items.

## tmap mode set to "plot"
tmap::tmap_mode("plot")

## tmap mode can also be set to "view"
#tmap_mode("view")

#create an object the plots the basemap and the NRT flood raster
#with the tmap library, call the tm_shape() function for the basemap
tm_plot <- tmap::tm_shape(bm_m)+
  tmap::tm_raster()+
  #create a new tmap shape for the NRT flood raster with style as "cat," meaning categorical.
  tmap::tm_shape(raster_df, style="cat")+
  #add the classification styling to the raster
  tmap::tm_raster( palette = c(colors),
  title = title, 
  breaks = class_breaks,
  labels = labels )+
  #style the plot
  tmap::tm_layout(legend.outside = TRUE) +
  tmap::tm_graticules(lines=FALSE)

View the plot:

tm_plot

To observe a location closer, we can use the geoboundaries of any country, in this Case the USA.

usa <- httr::GET("https://www.geoboundaries.org/api/current/gbOpen/USA/ADM1/")

After the GET call, we have to translate the content.

usa <- httr::content(usa)

names(usa)
 [1] "boundaryID"                "boundaryName"             
 [3] "boundaryISO"               "boundaryYearRepresented"  
 [5] "boundaryType"              "boundaryCanonical"        
 [7] "boundarySource"            "boundaryLicense"          
 [9] "licenseDetail"             "licenseSource"            
[11] "boundarySourceURL"         "sourceDataUpdateDate"     
[13] "buildDate"                 "Continent"                
[15] "UNSDG-region"              "UNSDG-subregion"          
[17] "worldBankIncomeGroup"      "admUnitCount"             
[19] "meanVertices"              "minVertices"              
[21] "maxVertices"               "meanPerimeterLengthKM"    
[23] "minPerimeterLengthKM"      "maxPerimeterLengthKM"     
[25] "meanAreaSqKM"              "minAreaSqKM"              
[27] "maxAreaSqKM"               "staticDownloadLink"       
[29] "gjDownloadURL"             "tjDownloadURL"            
[31] "imagePreview"              "simplifiedGeometryGeoJSON"

The parsed content object contains 32 components. Item 29 is a direct link to the geojson file (gjDownloadURL). Read that in and check the visuals.

usa <- sf::st_read(usa$gjDownloadURL)
Reading layer `geoBoundaries-USA-ADM1' from data source 
  `https://github.com/wmgeolab/geoBoundaries/raw/9469f09/releaseData/gbOpen/USA/ADM1/geoBoundaries-USA-ADM1.geojson' 
  using driver `GeoJSON'
Simple feature collection with 56 features and 5 fields
Geometry type: MULTIPOLYGON
Dimension:     XY
Bounding box:  xmin: -179.1489 ymin: -14.54869 xmax: 179.7785 ymax: 71.36516
Geodetic CRS:  WGS 84
plot(sf::st_geometry(usa))

This looks good, but it includes all United States territories. For simplicity, we can get it down to only California.

drops<-
  c("California")

usa<-usa[(usa$shapeName %in% drops),]

plot(sf::st_geometry(usa))

We need to provide the same Coordinate Reference System (CRS)

usa <- sf::st_transform(usa, 3857)

We can subset our RGB image with the California vector:

raster_cali <- bm_m[usa]
## tmap mode set to "plot"
tmap::tmap_mode("plot")

## tmap mode can also be set to "view"
#tmap_mode("view")

#create an object the plots the basemap and the NRT flood raster
#with the tmap library, call the tm_shape() function for the basemap
tm_plot <- tmap::tm_shape(raster_cali)+
  tmap::tm_raster()+
  #create a new tmap shape for the NRT flood raster with style as "cat," meaning categorical.
  tmap::tm_shape(raster_df, style="cat")+
  #add the classification styling to the raster
  tmap::tm_raster( palette = c(colors),
  title = title, 
  breaks = class_breaks,
  labels = labels )+
  #style the plot
  tmap::tm_layout(legend.outside = TRUE) +
  tmap::tm_graticules(lines=FALSE)

View the updated plot:

tm_plot

In this Lesson, You Learned…

Congratulations! Now you should be able to:

  • Navigate the LANCE data website and determine what data is available.

  • Select a tile and date to download NRT data.

  • Create a GET HTTP request to download near-real-time data.

  • Plot on a map and classify raster data to determine areas with unusual flooding.

References

Carroll, M. L., C. M. DiMiceli, J. R. G. Townshend, R. A. Sohlberg, A. I. Elders, S. Devadiga, A. M. Sayer, and R. C. Levy. 2016. “Development of an Operational Land Water Mask for MODIS Collection 6, and Influence on Downstream Data Products.” International Journal of Digital Earth 10 (2): 207–18. https://doi.org/10.1080/17538947.2016.1232756.
Land, Atmosphere Near real-time Capability for EO (LANCE). 2024. “About LANCE.” January 11, 2024. https://www.earthdata.nasa.gov/learn/find-data/near-real-time/about-lance.
Lin, Li, Liping Di, Junmei Tang, Eugene Yu, Chen Zhang, Md. Rahman, Ranjay Shrestha, and Lingjun Kang. 2019. “Improvement and Validation of NASA/MODIS NRT Global Flood Mapping.” Remote Sensing 11 (2): 205. https://doi.org/10.3390/rs11020205.
Slayback, D. 2023. “Modis NRT Global Flood Product - Earthdata.” https://www.earthdata.nasa.gov/s3fs-public/2023-01/MCDWD_UserGuide_RevC.pdf.
Wei, Jiangfeng, Qinjian Jin, Zong-Liang Yang, and Paul A. Dirmeyer. 2016. “Role of Ocean Evaporation in California Droughts and Floods.” Geophysical Research Letters 43 (12): 6554–62. https://doi.org/10.1002/2016gl069386.
Wilson, James. 2024. “NASA API Overview.” November 30, 2024. https://github.com/wilsjame/how-to-nasa?tab=readme-ov-file.
Zhang, Chen, Zhengwei Yang, Liping Di, Eugene G. Yu, Bei Zhang, Weiguo Han, Li Lin, and Liying Guo. 2022. “Near-Real-Time MODIS-Derived Vegetation Index Data Products and Online Services for CONUS Based on NASA LANCE.” Scientific Data 9 (1). https://doi.org/10.1038/s41597-022-01565-2.

Footnotes

  1. Photo Credit, NASA OESDIS.↩︎

  2. Photo Credit, California Department of Water Resources.↩︎

  3. Photo Credit, NASA GSFC.↩︎

  4. Value 2 (Recurring flood) is not populated in the beta release.↩︎